home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 November
/
Macworld (1999-11).dmg
/
Shareware World
/
Comms & Internet
/
DXF to VRML97 1.0.1
/
src
/
Main.c
< prev
next >
Wrap
C/C++ Source or Header
|
1997-01-18
|
319b
|
19 lines
#include <stdio.h>
#include "Main.h" /* REQUIRED for UNIX file conversion! */
/*
** NOTE:
** DropUNIX.Lib is not included with the project,
** you must build it before this will link.
*/
int main(int argc, char ** argv) {
int i;
for (i = 0; i < argc; i++) {
printf("%02d\t%s\n", i, argv[i]);
}
return 0;
}